home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / contrib / ezview / Makefile < prev    next >
Encoding:
Makefile  |  1992-12-22  |  1017 b   |  36 lines

  1. # Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)
  2. # Permission to use, copy, modify, and distribute this material 
  3. # for any purpose and without fee is hereby granted, provided 
  4. # that the above copyright notice and this permission notice 
  5. # appear in all copies, and that the name of Bellcore not be 
  6. # used in advertising or publicity pertaining to this 
  7. # material without the specific, prior written permission 
  8. # of an authorized representative of Bellcore.  BELLCORE 
  9. # MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY 
  10. # OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED "AS IS", 
  11. # WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
  12. #
  13.  
  14. FOOBAR-sun4=-Bstatic
  15.  
  16. STATICFLAG=FOOBAR${HOST_ARCH}
  17.  
  18. CFLAGS = -g -I.  ${$(STATICFLAG)} 
  19.  
  20. LDLIBS = 
  21.  
  22. CONFIGDIR = ../..
  23.  
  24. LOCALCFLAGS= -I${CONFIGDIR} ${CFLAGS}
  25.  
  26. .c.o:
  27.     rm -f $@
  28.     $(CC) -c  $(LOCALCFLAGS) $*.c
  29.  
  30. ezview: ezview.o unscribe.o ulstrcmp.o
  31.     $(CC) ${LOCALCFLAGS} -o ezview ezview.o unscribe.o ulstrcmp.o $(LDLIBS)
  32.  
  33. clean:
  34.     -rm -f ezview *.o *.BAK
  35.